home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cgiwebupdate.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  75 lines

  1. #
  2. # This script was written by John Lampe...j_lampe@bellsouth.net 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(11722);
  11.  script_bugtraq_id(3216);
  12.  script_version ("$Revision: 1.7 $");
  13.  script_cve_id("CAN-2001-1150");
  14.  
  15.  
  16.  name["english"] = "cgiWebupdate.exe vulnerability";
  17.  name["francais"] = "cgiWebupdate.exe vulnerability";
  18.  script_name(english:name["english"], francais:name["francais"]);
  19.  
  20.  desc["english"] = "
  21. The CGI 'cgiWebupdate.exe' exists on this webserver.  
  22. Some versions of this file are vulnerable to remote exploit.
  23.  
  24. An attacker can use this hole to gain access to confidential data
  25. or escalate their privileges on the web server.
  26.  
  27. Solution : remove it from the cgi-bin or scripts folder.
  28.  
  29. *** As Nessus solely relied on the existence of the cgiWebupdate.exe file, 
  30. *** this might be a false positive
  31.  
  32.  
  33. Risk factor : High";
  34.  
  35.  
  36.  script_description(english:desc["english"]);
  37.  
  38.  summary["english"] = "Checks for the cgiWebupdate.exe file";
  39.  
  40.  script_summary(english:summary["english"]);
  41.  
  42.  script_category(ACT_GATHER_INFO); 
  43.  
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2003 John Lampe",
  46.         francais:"Ce script est Copyright (C) 2003 John Lampe");
  47.  family["english"] = "CGI abuses";
  48.  family["francais"] = "Abus de CGI";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes", "http_version.nasl");
  51.  script_require_ports("Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58.  
  59. include("http_func.inc");
  60. include("http_keepalive.inc");
  61.  
  62. port = get_http_port(default:80);
  63.  
  64. if(!get_port_state(port))exit(0);
  65.  
  66. flag = 0;
  67. directory = "";
  68.  
  69. foreach dir (cgi_dirs()) {
  70.    if(is_cgi_installed_ka(item:string(dir, "/cgiWebupdate.exe"), port:port)) {
  71.       security_hole(port);
  72.     exit(0);
  73.     }
  74.    } 
  75.